Valuesettings constructor

const Valuesettings({
  1. required bool showValues,
  2. TextStyle? ValueTextStyle = const TextStyle(fontSize: 14, fontWeight: FontWeight.bold, color: Colors.black),
})

Implementation

const Valuesettings(
    {required this.showValues,
    this.ValueTextStyle = const TextStyle(
      fontSize: 14,
      fontWeight: FontWeight.bold,
      color: Colors.black,
    )});