RefreshCacheOutput.fromJson constructor

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

Implementation

factory RefreshCacheOutput.fromJson(Map<String, dynamic> json) {
  return RefreshCacheOutput(
    fileShareARN: json['FileShareARN'] as String?,
    notificationId: json['NotificationId'] as String?,
  );
}