ProductPrice constructor

const ProductPrice({
  1. required String value,
  2. required String title,
  3. Key? key,
})

Implementation

const ProductPrice({
  required this.value,
  required this.title,
  super.key,
}) : _textStyle = const TextStyle(
        fontSize: 16,
        fontWeight: FontWeight.w500,
        color: ColorName.gray700,
      );