ResetCacheOutput.fromJson constructor

ResetCacheOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ResetCacheOutput.fromJson(Map<String, dynamic> json) {
  return ResetCacheOutput(
    gatewayARN: json['GatewayARN'] as String?,
  );
}