GetFunctionConcurrencyResponse.fromJson constructor
Implementation
factory GetFunctionConcurrencyResponse.fromJson(Map<String, dynamic> json) {
return GetFunctionConcurrencyResponse(
reservedConcurrentExecutions:
json['ReservedConcurrentExecutions'] as int?,
);
}