shouldAlwaysShowIntroduction method

Future<bool> shouldAlwaysShowIntroduction()

Implementation

Future<bool> shouldAlwaysShowIntroduction() async {
  var document = await _documentRef.get();
  return document.data()!['always_show'] as bool? ?? false;
}