getAppCredential method

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

Implementation

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