initMethodChannel method

void initMethodChannel(
  1. dynamic id
)

Implementation

void initMethodChannel(dynamic id) {
  this._channel = MethodChannel(
      'com.pichillilorenzo/flutter_inappwebview_pull_to_refresh_$id');
  this._channel?.setMethodCallHandler(handleMethod);
}