AuthResponse.fromJson constructor

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

Implementation

factory AuthResponse.fromJson(Map<String, dynamic> json) => AuthResponse(
      accessToken: json["access_token"],
      expiresIn: json["expires_in"],
      tokenType: json["token_type"],
    );