build method

  1. @override
dynamic build(
  1. dynamic context,
  2. dynamic ref
)

Implementation

@override
Widget build(BuildContext context, WidgetRef ref) {
  return Column(
    children: [
      SectionHeader(
        title: L10n.of(context).actions,
        isShowSeeAllButton: false,
        onTapSeeAll: () {},
      ),
      actionButtons(context, ref),
      const SizedBox(height: 300),
    ],
  );
}