copyWith method

  1. @useResult
FButtonIconContentStyle copyWith({
  1. EdgeInsets? padding,
})

Returns a copy of this FButtonIconContentStyle with the given properties replaced.

Implementation

@useResult
FButtonIconContentStyle copyWith({EdgeInsets? padding}) => FButtonIconContentStyle(padding: padding ?? this.padding);