toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (environment != null) 'environment': environment!,
  if (loggingOption != null) 'loggingOption': loggingOption!,
  if (maxRunDuration != null) 'maxRunDuration': maxRunDuration!,
  if (runnables != null) 'runnables': runnables!,
  if (userAccount != null) 'userAccount': userAccount!,
};