toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['path'] = this.path;
  data['classInfo'] = this.classInfo.toJson();
  data['imports'] = this.imports.toList();
  data['methods'] = this.methods.map((v) => v.toJson()).toList();
  data['properties'] = this.properties.map((v) => v.toJson()).toList();
  return data;
}