navigationType property
NavigationType?
get
navigationType
Implementation
NavigationType? get navigationType {
final ret = js_util.getProperty(this, 'navigationType');
return ret == null ? null : NavigationType.fromValue(ret);
}
set
navigationType
( )
Implementation
set navigationType(NavigationType? newValue) {
js_util.setProperty(this, 'navigationType', newValue?.value);
}