AuthInfo.fromJson constructor

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

Implementation

AuthInfo.fromJson(Map<String, dynamic> json) {
  type = json['type'];
  url = json['url'];
  name = json['name'];
}