FetchEntityByNameResponse.fromJson constructor

FetchEntityByNameResponse.fromJson(
  1. dynamic json
)

Implementation

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