GridLabel constructor

const GridLabel({
  1. Key? key,
  2. required String urlPrefix,
  3. required String customerId,
  4. required String tryOnKey,
  5. double? radius = 5,
  6. String? btnTxt,
  7. Color? txtColor = Colors.black,
  8. FontStyle? fontStyle,
  9. double? fontSize,
  10. FontWeight? fontWeight,
  11. double? height,
  12. double? width,
  13. Color? btnColor,
  14. EdgeInsetsGeometry? padding,
  15. EdgeInsetsGeometry? margin,
})

Implementation

const GridLabel({
  super.key,
  required this.urlPrefix,
  required this.customerId,
  required this.tryOnKey,
  this.radius = 5,
  this.btnTxt,
  this.txtColor = Colors.black,
  this.fontStyle,
  this.fontSize,
  this.fontWeight,
  this.height,
  this.width,
  this.btnColor,
  this.padding,
  this.margin,
});