renderActionButton method

Widget renderActionButton()

Implementation

Widget renderActionButton() {
  if (isCoverBanner ?? false) return const SizedBox();

  return Container(
    child: const Icon(
      Icons.arrow_forward,
      color: Color(0xFFFBFDFE),
      size: 30,
    ),
  );
}