Sprite constructor
Sprite({})
Implementation
Sprite({
required this.texture,
required this.x,
required this.y,
this.originX = 0.5,
this.originY = 0.5,
this.opacity = 255,
this.scale = 1.0,
this.rotation = 0,
this.flip = false,
this.tint = Colors.white,
});