copyWith method

SetBio copyWith({
  1. String? bio,
})

Implementation

SetBio copyWith({
  String? bio,
}) => SetBio(
  bio: bio ?? this.bio,
);