preview static method
Implementation
static preview(
BuildContext context, [
DataRowBuilder? builder,
]) {
return Navigator.of(context).push(
MaterialPageRoute(
builder: (ctx) => CacheChannelListPage(
builder: builder,
),
),
);
}