addView method

Future<void> addView(
  1. android_view_View child
)

Implementation

Future<void> addView(android_view_View child) {
  return kMethodChannel.invokeMethod(
    'android.view.ViewGroup::addView',
    {'__this__': this, 'child': child},
  );
}