toJson method

Map<String, dynamic> toJson()

Implementation

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