AuthInfo constructor

AuthInfo({
  1. required String authorizeUrl,
  2. required String deviceCodeUrl,
  3. required String tokenUrl,
  4. required String clientId,
})

Implementation

AuthInfo({
  required this.authorizeUrl,
  required this.deviceCodeUrl,
  required this.tokenUrl,
  required this.clientId,
});