decode static method
Deserialize a json compatible object into a NapaWidget or null.
Implementation
static NapaTransform? decode(dynamic data) {
if (data == null) {
return null;
}
return NapaTransform(
transform: NapaMatrix4Compose.decode(data['transform'])!,
child: NapaWidget.decode(data['child']),
);
}