getCurrentPage method

Future<int?> getCurrentPage()

Implementation

Future<int?> getCurrentPage() async {
  final int? currentPage = await _channel.invokeMethod('currentPage');
  return currentPage;
}