toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final componentVersion = this.componentVersion;
  final configurationUpdate = this.configurationUpdate;
  final runWith = this.runWith;
  return {
    if (componentVersion != null) 'componentVersion': componentVersion,
    if (configurationUpdate != null)
      'configurationUpdate': configurationUpdate,
    if (runWith != null) 'runWith': runWith,
  };
}