toWidget method
Implementation
@override
Opacity toWidget(AnyWidgetContext context) {
return Opacity(
key: key?.toFlutter(context),
opacity: opacity,
alwaysIncludeSemantics: alwaysIncludeSemantics ?? false,
child: child?.toWidget(context),
);
}