EnableDirectoryResponse.fromJson constructor

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

Implementation

factory EnableDirectoryResponse.fromJson(Map<String, dynamic> json) {
  return EnableDirectoryResponse(
    directoryArn: json['DirectoryArn'] as String,
  );
}