FirebasePlatform.fromMap constructor
Creates a Firebase platform configuration from the provided map.
Implementation
factory FirebasePlatform.fromMap(
Map<String, dynamic> map,
) {
return FirebasePlatform(
appId: map['app_id'] ?? '',
options: map['options'] ?? '',
);
}