toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (data != null) {
    _json[r'Data'] = data;
  } else {
    _json[r'Data'] = null;
  }
  if (limit != null) {
    _json[r'Limit'] = limit;
  } else {
    _json[r'Limit'] = null;
  }
  if (offset != null) {
    _json[r'Offset'] = offset;
  } else {
    _json[r'Offset'] = null;
  }
  return _json;
}