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