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>{};
  result['file'] = file;
  result['offset'] = offset;
  var superOnly = this.superOnly;
  if (superOnly != null) {
    result['superOnly'] = superOnly;
  }
  return result;
}