toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (concurrency != null) 'concurrency': concurrency!,
  if (cpu != null) 'cpu': cpu!,
  if (maxInstances != null) 'maxInstances': maxInstances!,
  if (memoryMib != null) 'memoryMib': memoryMib!,
  if (minInstances != null) 'minInstances': minInstances!,
};