LambdaFunctionMemoryProjectedMetric.fromJson constructor
Implementation
factory LambdaFunctionMemoryProjectedMetric.fromJson(
Map<String, dynamic> json) {
return LambdaFunctionMemoryProjectedMetric(
name: (json['name'] as String?)?.toLambdaFunctionMemoryMetricName(),
statistic: (json['statistic'] as String?)
?.toLambdaFunctionMemoryMetricStatistic(),
value: json['value'] as double?,
);
}