Vlegend constructor

const Vlegend({
  1. Key? key,
  2. Color? color,
  3. String? text,
  4. bool isSquare = false,
  5. double? size = 10,
  6. Color? textColor = const Color(0xff505050),
})

Implementation

const Vlegend({
  Key? key,
  this.color,
  this.text,
  this.isSquare = false,
  this.size = 10,
  this.textColor = const Color(0xff505050),
}) : super(key: key);