height property
int?
get
height
The height of this canvas element in CSS pixels.
Implementation
int? get height => _getAttributeInt('height');
set
height
(int? value)
Implementation
set height(int? value) {
_setAttributeInt('height', value);
}