entries method

Returns the configured Firebase platforms as named entries.

Implementation

Iterable<FirebasePlatformEntry> entries() sync* {
  if (android != null) yield FirebasePlatformEntry('android', android!);
  if (ios != null) yield FirebasePlatformEntry('ios', ios!);
  if (web != null) yield FirebasePlatformEntry('web', web!);
}