EntityInfo.fromJson constructor

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

Implementation

EntityInfo.fromJson(Map<String, dynamic> json)
    : id = EntityId.fromJson(json['id']),
      name = json['name'];