entries method

Returns the Firebase configurations as named platform entries.

Implementation

Iterable<FirebasePlatformEntry> entries() sync* {
  yield FirebasePlatformEntry(
    'android',
    android,
  );

  yield FirebasePlatformEntry(
    'ios',
    ios,
  );

  yield FirebasePlatformEntry(
    'web',
    web,
  );
}