fetch static method

Future<NotificareScannable> fetch({
  1. required String tag,
})

Implementation

static Future<NotificareScannable> fetch({required String tag}) async {
  final json = await _channel.invokeMapMethod<String, dynamic>('fetch', tag);
  return NotificareScannable.fromJson(json!);
}