login method

Future<LoginObject> login({
  1. String? publicUserId,
})

Call it to create LoginObject for login. Returns Future of LoginObject object or error.

Implementation

Future<LoginObject> login({String? publicUserId}) {
  return KeyriPlatform.instance.login(publicUserId);
}