northFixedFlag property

bool get northFixedFlag

Get the value of the NorthFixed flag.

Returns

  • The NorthFixed flag value

Throws

  • An exception if it fails.

Implementation

bool get northFixedFlag {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getNorthFixedFlag',
  );

  return resultString['result'];
}
set northFixedFlag (bool isNorthFixed)

Set the value of the NorthFixed flag.

Parameters

  • IN isNorthFixed The NorthFixed flag value

Throws

  • An exception if it fails

Implementation

set northFixedFlag(final bool isNorthFixed) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setNorthFixedFlag',
    args: isNorthFixed,
  );
}