copyWith method
Implementation
MinecraftSkin copyWith({
String? id,
String? state,
String? url,
String? textureKey,
String? variant,
}) {
return MinecraftSkin(
id: id ?? this.id,
state: state ?? this.state,
url: url ?? this.url,
textureKey: textureKey ?? this.textureKey,
variant: variant ?? this.variant,
);
}