copyWith method

Style copyWith({
  1. AvatarStyle? avatarStyle,
})

Implementation

Style copyWith({
  AvatarStyle? avatarStyle,
}) {
  return Style(
    avatarStyle: avatarStyle ?? this.avatarStyle,
  );
}