copyWith method
Implementation
ZaloProfileModel copyWith({
String? birthday,
String? gender,
String? name,
String? id,
Picture? picture,
}) =>
ZaloProfileModel(
birthday: birthday ?? this.birthday,
gender: gender ?? this.gender,
name: name ?? this.name,
id: id ?? this.id,
picture: picture ?? this.picture,
);