toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (name != null) {
_json[r'name'] = name;
}
if (commit != null) {
_json[r'commit'] = commit;
}
_json[r'services'] = services;
return _json;
}