copyWith method
Implementation
UserBeanAvatarUrls copyWith(
{String? $24X24, String? $32X32, String? $48X48, String? $16X16}) {
return UserBeanAvatarUrls(
$24X24: $24X24 ?? this.$24X24,
$32X32: $32X32 ?? this.$32X32,
$48X48: $48X48 ?? this.$48X48,
$16X16: $16X16 ?? this.$16X16,
);
}