DRIVE_MODE top-level constant

  1. @Deprecated('''With the ability to swap between capture and automate this value is not required anymore You can use tsCaptureModelActive to check if the app is in capture mode ''')
bool const DRIVE_MODE

Implementation

@Deprecated(
    '''With the ability to swap between capture and automate this value is not required anymore

    You can use tsCaptureModelActive to check if the app is in capture mode
    ''')
const bool DRIVE_MODE = bool.fromEnvironment(
  'DRIVE_MODE',
  defaultValue: false,
);