copyWith method
Creates a copy of this avatar style with the given fields replaced.
Implementation
NativeAvatarStyle copyWith({
double? size,
double? borderRadius,
}) {
return NativeAvatarStyle(
size: size ?? this.size,
borderRadius: borderRadius ?? this.borderRadius,
);
}