NativeEngine constructor

const NativeEngine({
  1. Key? key,
  2. required BuildContext parentContext,
  3. required dynamic onJobComplete()?,
  4. Color? color = Colors.transparent,
})

Implementation

const NativeEngine({
  Key? key,
  required this.parentContext,
  required this.onJobComplete,
  this.color = Colors.transparent,
}) : super(key: key);