authorize method

  1. @override
Future<bool> authorize()

Implementation

@override
Future<bool> authorize() async {
  var debugPrefix = '$runtimeType.authorize()';
  lazy.log(debugPrefix, forced: debugLog);
  signIn();
  return token.value.isNotEmpty;
}