isSDKInstance property

bool get isSDKInstance

Test if this is an SDK instance

Returns

  • True if the interface is an SDK instance, false otherwise.

Throws

  • An exception if it fails

Implementation

bool get isSDKInstance {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DataSourceContainer',
    'isSDKInstance',
  );

  return resultString['result'];
}