toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (containers != null) 'containers': containers!,
      if (encryptionKey != null) 'encryptionKey': encryptionKey!,
      if (executionEnvironment != null)
        'executionEnvironment': executionEnvironment!,
      if (maxRetries != null) 'maxRetries': maxRetries!,
      if (serviceAccount != null) 'serviceAccount': serviceAccount!,
      if (timeout != null) 'timeout': timeout!,
      if (volumes != null) 'volumes': volumes!,
      if (vpcAccess != null) 'vpcAccess': vpcAccess!,
    };