IconDecoration constructor

const IconDecoration({
  1. IconData? leftIcon,
  2. IconData? rightIcon,
  3. double? leftIconSize,
  4. Color? leftIconColor,
  5. double? rightIconSize,
  6. Color? rightIconColor,
  7. Color? leftFocusIconColor,
  8. Color? rightFocusIconColor,
})

Implementation

const IconDecoration({
  this.leftIcon,
  this.rightIcon,
  this.leftIconSize,
  this.leftIconColor,
  this.rightIconSize,
  this.rightIconColor,
  this.leftFocusIconColor,
  this.rightFocusIconColor,
});