EFSAuthorizationConfig.fromJson constructor

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

Implementation

factory EFSAuthorizationConfig.fromJson(Map<String, dynamic> json) {
  return EFSAuthorizationConfig(
    accessPointId: json['accessPointId'] as String?,
    iam: (json['iam'] as String?)?.toEFSAuthorizationConfigIAM(),
  );
}