getCard property

Future<String> get getCard

Implementation

static Future<String> get getCard async {
  final String card = await _channel
      .invokeMethod("getCard");
  print(card);
  // return passedArgument;
  return card;
}