KeyInfo constructor

KeyInfo({
  1. required int? x,
  2. required int? y,
  3. required int? w,
  4. required int? h,
  5. required String? keyFuc,
  6. int? txvSize = 24,
  7. String? keyText,
  8. int? txvColor = 0xff000000,
  9. int? bgColor = 0xffffffff,
  10. int? strokeColor = 0xff888888,
  11. int? strokeWidth = 1,
})

Implementation

KeyInfo(
    {required this.x,
    required this.y,
    required this.w,
    required this.h,
    required this.keyFuc,
    this.txvSize = 24,
    this.keyText,
    this.txvColor = 0xff000000,
    this.bgColor = 0xffffffff,
    this.strokeColor = 0xff888888,
    this.strokeWidth = 1});