CommonLeadingBtn constructor

CommonLeadingBtn({
  1. Key? key,
  2. Function? onBack,
  3. num paddingR = 15.0,
  4. bool isDark = false,
  5. String? icon,
})

Implementation

CommonLeadingBtn(
    {Key? key,
    this.onBack,
    this.paddingR = 15.0,
    this.isDark = false,
    this.icon})
    : super(key: key);