LevelTool constructor

const LevelTool({
  1. Key? key,
  2. String? gender = '1',
  3. int anchorLabel = 1,
  4. int userLabel = 1,
  5. bool showanchor = false,
  6. bool showGender = true,
  7. bool showBoth = true,
  8. int nobilityType = NobleTypeEnum.none,
  9. int guardType = GuardTypeEnum.none,
})

Implementation

const LevelTool(
    {Key? key,
    this.gender = '1',
    this.anchorLabel = 1,
    this.userLabel = 1,
    this.showanchor = false,
    this.showGender = true,
    this.showBoth = true,
    this.nobilityType = NobleTypeEnum.none,
    this.guardType = GuardTypeEnum.none})
    : super(key: key);