providerId property

int get providerId

Get provider id of this landmark.

Returns

Throws

  • An exception if it fails.

Implementation

int get providerId {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getProviderId',
  );

  return resultString['result'];
}
set providerId (int providerId)

Set provider id of this landmark.

See the MapProviderId enum for more details.

Parameters

  • IN providerId The provider ID

Throws

  • An exception if it fails.

Implementation

set providerId(final int providerId) {
  objectMethod(_pointerId, 'Landmark', 'setProviderId', args: providerId);
}