showNativeAd method

Widget showNativeAd({
  1. Color? color,
})

Implementation

Widget showNativeAd({Color? color}) {
  return NativeEngine(
    parentContext: this,
    onJobComplete: () {},
    color: color,
  );
}