toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (actions != null)
'actions': actions!.map((value) => value.toJson()).toList(),
if (encryptedEnvironment != null)
'encryptedEnvironment': encryptedEnvironment!.toJson(),
if (environment != null) 'environment': environment!,
if (resources != null) 'resources': resources!.toJson(),
if (timeout != null) 'timeout': timeout!,
};