toMap method

Map<String, dynamic> toMap()

Converts this Firebase configuration to a map.

Implementation

Map<String, dynamic> toMap() {
  return {
    if (android != null) 'android': android!.toMap(),
    if (ios != null) 'ios': ios!.toMap(),
    if (web != null) 'web': web!.toMap()
  };
}