GlobalConfig constructor

GlobalConfig({
  1. dynamic addFont,
  2. FontWeight? fontWeight,
  3. Widget? smartRefresherCustomHeader,
})

Implementation

GlobalConfig({
  this.addFont,
  this.fontWeight,
  this.smartRefresherCustomHeader,
}) {
  addFont = addFont ?? 0;
  fontWeight = fontWeight ?? FontWeight.w400;
}