TokenResponse.fromJsonMap constructor

TokenResponse.fromJsonMap(
  1. Map json
)

Implementation

TokenResponse.fromJsonMap(Map json) {
    id = json["id"];
    access = json["access"];
    refresh = json["refresh"];
}