navigationType property

NavigationType? navigationType

Implementation

NavigationType? get navigationType {
  final ret = js_util.getProperty(this, 'navigationType');

  return ret == null ? null : NavigationType.fromValue(ret);
}
void navigationType=(NavigationType? newValue)

Implementation

set navigationType(NavigationType? newValue) {
  js_util.setProperty(this, 'navigationType', newValue?.value);
}