SmsQuery constructor

SmsQuery()

Implementation

factory SmsQuery() {
  if (instance == null) {
    const MethodChannel methodChannel = MethodChannel(
      "plugins.juliusgithaiga.com/querySMS",
      JSONMethodCodec(),
    );
    instance = SmsQuery._private(methodChannel);
  }
  return instance!;
}