FileSystemConfig.fromJson constructor

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

Implementation

factory FileSystemConfig.fromJson(Map<String, dynamic> json) {
  return FileSystemConfig(
    arn: json['Arn'] as String,
    localMountPath: json['LocalMountPath'] as String,
  );
}