pageBlockList property

PageBlockList? pageBlockList

A list of data blocks

Implementation

PageBlockList? get pageBlockList {
  if (this is PageBlockList) {
    return this as PageBlockList;
  }
  return null;
}