getLastInitTime function

Future<int> getLastInitTime()

Implementation

Future<int> getLastInitTime() async {
  final result = await _storage.read(key: _keyLastInitTime);
  return int.tryParse('$result') ?? 0;
}