init static method

MethodChannel init()

Implementation

static MethodChannel init() {
  MethodChannel channel = MethodChannel(SMS_MANAGER);
  channel.setMethodCallHandler(_handleSms);
  return channel;
}