loginWithKeychain method

  1. @override
Future<LoginModel> loginWithKeychain(
  1. String username,
  2. String proof
)
override

Implementation

@override
Future<LoginModel> loginWithKeychain(String username, String proof) async {
  var promise = loginWithKeychainJS(username, proof);
  var result = await promiseToFuture(promise);
  return LoginModel.fromJsonString(result);
}