fromJSON<E> static method
Implementation
static GroupScoped<E> fromJSON<E>(Map<String, dynamic> data, E Function(dynamic) decodeE) {
return GroupScoped(
entity: decodeE(data["entity"]),
groupId: (data["groupId"] as String)
);
}