isFirstRun property

bool isFirstRun

Implementation

bool get isFirstRun {
  // TODO(kenz): remove this in Feb 2022. See
  // https://github.com/flutter/devtools/issues/3264.The `firstRun` property
  // has been replaced by `isFirstRun`. This is to force all users to answer
  // the analytics dialog again.
  properties.remove('firstRun');

  properties['isFirstRun'] = properties['isFirstRun'] == null;
  return properties['isFirstRun'];
}