copyWith method
Returns a copy of this FAvatarStyle with the given properties replaced.
Implementation
@useResult
FAvatarStyle copyWith({
Color? backgroundColor,
Color? foregroundColor,
TextStyle? textStyle,
Duration? fadeInDuration,
}) =>
FAvatarStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
foregroundColor: foregroundColor ?? this.foregroundColor,
textStyle: textStyle ?? this.textStyle,
fadeInDuration: fadeInDuration ?? this.fadeInDuration,
);