ErrorEntity.fromJson constructor

ErrorEntity.fromJson(
  1. dynamic json
)

Implementation

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