DeleteDirectoryResponse.fromJson constructor

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

Implementation

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