ErrorEntity.fromJson constructor
ErrorEntity.fromJson(
- dynamic json
Implementation
factory ErrorEntity.fromJson(json) {
return ErrorEntity(json["code"], json["message"]);
}
factory ErrorEntity.fromJson(json) {
return ErrorEntity(json["code"], json["message"]);
}