BJHTitleSwitchValueCell constructor

BJHTitleSwitchValueCell({
  1. Key? key,
  2. double? leftRightPadding,
  3. required String title,
  4. bool boolValue = false,
  5. required void onChanged(
    1. bool bSwtichValue
    ),
})

Implementation

BJHTitleSwitchValueCell({
  Key? key,
  this.leftRightPadding,
  required this.title,
  this.boolValue = false,
  required this.onChanged,
}) : super(key: key);