reprinterLastTransaction method

Future<ElginResponse?> reprinterLastTransaction()

Implementation

Future<ElginResponse?> reprinterLastTransaction() async {
  final response = await channel.invokeMethod(
    PaymentTypeCall.REPRINTER.method,
  );
  return ElginResponse.fromJson(response.toString());
}