GoFileException.fromJson constructor

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

Create the exception from the json response

Implementation

factory GoFileException.fromJson(Map<String, dynamic> json) {
  return GoFileException._(json['status'], data: json['data']);
}