words property
Retrieves the three words that represent the location.
Returns
- The three words that represent the location as a string.
Implementation
String get words {
final OperationResult resultString = objectMethod(
_pointerId,
'Projection_W3W',
'getWords',
);
return resultString['result'];
}
Sets the words for the W3WProjection.
Parameters
- IN words The three words that represent the location.
Implementation
set words(String words) {
objectMethod(
_pointerId,
'Projection_W3W',
'setWords',
args: words,
);
}