ResponseServicer.fromJson constructor

ResponseServicer.fromJson(
  1. dynamic json
)

Implementation

ResponseServicer.fromJson(dynamic json) {
  _status = json['status'] != null ? Status.fromJson(json['status']) : null;
  _servicer = json['data'] != null ? Servicer.fromJson(json['data']) : null;
}