isFirebaseTestLabActivated property
Return true
if running under Firebase Test Lab (includes pre-launch
report environment) on Android, false
otherwise.
Implementation
static Future<bool> get isFirebaseTestLabActivated async {
return Platform.isAndroid &&
await _channel.invokeMethod('isFirebaseTestLabActivated');
}