DirectoryDeletedException.fromJson constructor

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

Implementation

factory DirectoryDeletedException.fromJson(Map<String, dynamic> json) {
  return DirectoryDeletedException(
    message: json['Message'] as String?,
  );
}