getPaper method

Future<String?> getPaper()

Retrieves the paper status (e.g., paper out, paper loaded).

Returns the paper status as a String or null if unsuccessful.

Implementation

Future<String?> getPaper() async {
  return await SunmiConfig.getPaper();
}