Dart
dart:html
DomPoint
y property
description
y property
num
y
override
Implementation
num
get
y => JS(
"num"
,
"#.y"
,
this
);
void
y=
(
num
value
)
Implementation
set
y(
num
value) { JS(
"void"
,
"#.y = #"
,
this
, value); }