setAllowTracking method

Future<void> setAllowTracking(
  1. bool allow
)

Implementation

Future<void> setAllowTracking(bool allow) async {
  allowTracking = true;
  await pref.saveBool(allow, SaveKey.allowTracking);
}