toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson({ClientUriConverter? clientUriConverter}) {
  var result = <String, Object>{};
  var className = this.className;
  if (className != null) {
    result['className'] = className;
  }
  result['methodName'] = methodName;
  result['isDeclaration'] = isDeclaration;
  return result;
}