CustomTextBody constructor

const CustomTextBody({
  1. Key? key,
  2. required String text,
})

Implementation

const CustomTextBody({
  Key? key,
  required this.text,
}) : super(
        key: key,
      );