height property
int
get
height
Implementation
int get height => _comics?.height ?? 0;
set
height
(int value)
Implementation
set height(int value) {
if (_comics != null && _comics!.height != value) {
_comics!.height = value;
notifyListeners();
}
}