HeightKeyWidget constructor

const HeightKeyWidget({
  1. Key? key,
  2. required String content,
  3. String? heightKey,
  4. Color heightColor = Colors.pink,
  5. TextStyle? textStyle = const TextStyle(color: Colors.black),
  6. int? makLines,
})

Implementation

const HeightKeyWidget({
  Key? key,
  required this.content,
  this.heightKey,
  this.heightColor = Colors.pink,
  this.textStyle = const TextStyle(color: Colors.black),
  this.makLines,
}) : super(key: key);