asSliver property

Widget get asSliver

Implementation

Widget get asSliver {
  if (this is ListView) {
    return (this as ListView).asSliver;
  } else if (this is GridView) {
    return (this as GridView).asSliver;
  } else {
    return SliverToBoxAdapter(child: this);
  }
}