plural property

String plural

Implementation

String get plural => switch (this) {
      RealmCollectionType.list => 'lists',
      RealmCollectionType.set => 'sets',
      RealmCollectionType.map => 'maps',
      _ => 'none',
    };