toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (scheduleName != null) {
json[r'ScheduleName'] = scheduleName;
}
if (assetModelId != null) {
json[r'AssetModelId'] = assetModelId;
}
if (rows != null) {
json[r'Rows'] = rows;
}
if (definitions != null) {
json[r'Definitions'] = definitions;
}
if (imported != null) {
json[r'Imported'] = imported;
}
return json;
}