copyWith method
Implementation
OtherInfo copyWith({
String? fullName,
String? mail,
String? phoneNumber,
}) =>
OtherInfo(
fullName: fullName ?? this.fullName,
mail: mail ?? this.mail,
phoneNumber: phoneNumber ?? this.phoneNumber,
);