toJson method

  1. @override
Map<String, Object> toJson({
  1. ClientUriConverter? clientUriConverter,
})

Returns a JSON presentation of the object.

Implementation

@override
Map<String, Object> toJson({ClientUriConverter? clientUriConverter}) {
  var result = <String, Object>{};
  result['offset'] = offset;
  result['length'] = length;
  result['replacement'] = replacement;
  var id = this.id;
  if (id != null) {
    result['id'] = id;
  }
  var description = this.description;
  if (description != null) {
    result['description'] = description;
  }
  return result;
}