toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (creatorEmail != null) 'creatorEmail': creatorEmail!,
      if (name != null) 'name': name!,
      if (nextTeardownTask != null) 'nextTeardownTask': nextTeardownTask!,
      if (parameters != null) 'parameters': parameters!,
      if (properties != null) 'properties': properties!,
      if (teardownTaskImplementationClassName != null)
        'teardownTaskImplementationClassName':
            teardownTaskImplementationClassName!,
    };