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