getDeviceCredential method

  1. @override
Future<BasicAuth> getDeviceCredential(
  1. String username,
  2. String password
)
override

Implementation

@override
Future<BasicAuth> getDeviceCredential(
    String username, String password) async {
  return BasicAuth(username: username, password: password);
}