isValid property

bool get isValid

Whether this analysis contains valid results.

Always check this flag before accessing other properties of the analysis. If false, other fields may be missing or meaningless.

Returns

  • True if the analysis is valid, false otherwise.

Implementation

bool get isValid {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DriverBehaviourAnalysis',
    'isValid',
  );

  return resultString['result'];
}