CustomTextView constructor

const CustomTextView({
  1. Key? key,
  2. required String customTextStr,
  3. Color? containerColor,
})

Implementation

const CustomTextView(
    {Key? key, required this.customTextStr, this.containerColor})
    : super(key: key);