generator static method
Dynamic runtime custom builder/generator factory.
Implementation
static Widget generator({
required String category,
required String style,
Color? color,
double size = 50.0,
bool glow = true,
}) {
return MotionLoader.fromJson({
'category': category,
'style': style,
'color': color?.toARGB32(),
'size': size,
'glow': glow,
});
}