FetchEntityByNameResponse.fromJson constructor
FetchEntityByNameResponse.fromJson(
- dynamic json
Implementation
FetchEntityByNameResponse.fromJson(dynamic json) {
entity = json["entity"] != null ? Entity.fromJson(json["entity"]) : null;
success = json["success"];
}