providerId property
Get provider id of this landmark.
Returns
- The provider ID. See MapProviderId for more information.
Throws
- An exception if it fails.
Implementation
int get providerId {
final OperationResult resultString = objectMethod(
_pointerId,
'Landmark',
'getProviderId',
);
return resultString['result'];
}
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);
}