FireworkModel.create constructor
FireworkModel.create()
Implementation
factory FireworkModel.create(
double width,
double height,
Random random,
Color color,
OutlinedBorder shape,
bool fillShape,
Offset pos,
Offset velocity,
Offset acceleration,
) {
return FireworkModel(
fillShape: fillShape,
color: color,
width: width,
random: random,
height: height,
shape: shape,
pos: pos,
velocity: velocity,
acceleration: acceleration,
);
}