init static method

MethodChannel init()

Implementation

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