isFilled property
bool
get
isFilled
Implementation
bool get isFilled =>
(captionLayout == null || captionLayout!.isFilled) &&
(rows.isEmpty ||
rows
.map((e) => e.isFilled)
.reduce((value, element) => value && element)) &&
(footerLayout == null || footerLayout!.isFilled);