toJson method

  1. @override
Map<String, Object> toJson()

Returns a JSON presentation of the object.

Implementation

@override
Map<String, Object> toJson() {
  var result = <String, Object>{};
  var file = this.file;
  if (file != null) {
    result['file'] = file;
  }
  var uri = this.uri;
  if (uri != null) {
    result['uri'] = uri;
  }
  return result;
}