expanded method

Column expanded()

expand the list view.

Implementation

Column expanded() {
  return Column(
    children: [
      Expanded(
        child: this,
      ),
    ],
  );
}