fetch static method

void fetch({
  1. String? appId,
  2. String? templateCode,
})

Implementation

static void fetch({String? appId, String? templateCode}) {
  _channel
      .invokeMethod("fetch", {"appId": appId, "templateCode": templateCode});
}