isDataTypeAvailable method
- DataType type
Checks whether a given data type exists in the log.
Parameters
type: The DataType to check for availability in the recorded log.
Returns
trueif the data type is present in the log, otherwisefalse.
Implementation
bool isDataTypeAvailable(final DataType type) {
final OperationResult resultString = objectMethod(
pointerId,
'LogMetadata',
'isDataTypeAvailable',
args: type.id,
);
return resultString['result'];
}