isUpdatingRecordings property

bool get isUpdatingRecordings

Whether the recordings are being updated.

If unspecified, it uses the Dart environment declaration value for update_recordings, defaulting to false if no value was declared.

Thus, updating recordings can be done via flutter test --dart-define update_recordings=true

Implementation

bool get isUpdatingRecordings =>
    _isUpdatingRecordings ?? _envIsUpdatingRecordings;