toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  var map = <String, dynamic>{};
  if (_status != null) {
    map['status'] = _status?.toJson();
  }
  if (_servicer != null) {
    map['data'] = _servicer?.toJson();
  }
  return map;
}