toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (componentSource != null) 'componentSource': componentSource!,
      if (componentTransform != null)
        'componentTransform': componentTransform!,
      if (id != null) 'id': id!,
      if (inputSource != null) 'inputSource': inputSource!,
      if (kind != null) 'kind': kind!,
      if (name != null) 'name': name!,
      if (outputSource != null) 'outputSource': outputSource!,
      if (prerequisiteStage != null) 'prerequisiteStage': prerequisiteStage!,
    };