DeviceCodeResponse.fromJson constructor

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

Implementation

factory DeviceCodeResponse.fromJson(Map<String, dynamic> json) =>
    DeviceCodeResponse._(
      deviceCode: json["device_code"].toString(),
      userCode: json["user_code"].toString(),
      verificationUrl: json["verification_url"].toString(),
      expiresAt:
          DateTime.now().add(Duration(seconds: json["expires_in"] as int)),
      pollingInterval: (json["interval"] ?? 5) as int,
      verificationUrlComplete: json["verification_uri_complete"].toString(),
      qrCodeUrl: json['qr_code']?.toString(),
    );