ReachabilityError.fromJson constructor

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

Implementation

factory ReachabilityError.fromJson(Map<String?, dynamic> json) {
  return ReachabilityError(
      type: json['type'],
      title: json['title'],
      status: json['status'],
      detail: json['detail']);
}