current property

DynamicMap? current

An account that is not logged in but can be restored with tryRestoreAuth.

未ログインであるがtryRestoreAuthで復元できるアカウント。

Implementation

DynamicMap? get current {
  final current = _data._getCurrent();
  if (current.isEmpty) {
    return null;
  }
  return current;
}