EntityGroupInfo.fromJson constructor

EntityGroupInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

EntityGroupInfo.fromJson(Map<String, dynamic> json)
    : ownerIds = (json['ownerIds'] as List<dynamic>)
          .map((e) => EntityId.fromJson(e))
          .toSet(),
      super.fromJson(json);