words property

String get words

The three-word address.

Returns

  • (String) The three-word identifier for this W3W projection.

Implementation

String get words {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_W3W',
    'getWords',
  );

  return resultString['result'];
}
set words (String words)

Set the three-words string that represents the location.

Parameters

  • words: (String) Three words identifying a location.

Implementation

set words(String words) {
  objectMethod(_pointerId, 'Projection_W3W', 'setWords', args: words);
}