toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var uris = this.uris;

  final json = <String, Object?>{};
  if (uris != null) {
    json[r'uris'] = uris;
  }
  return json;
}