NotFoundException.fromJson constructor

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

Implementation

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