getMaxFileSize method

Future<int> getMaxFileSize ()

Returns the current setting for the maximum file size threshold.

Implementation

static Future<int> getMaxFileSize() async{
  final int fileSize = await _channel.invokeMethod(LOGGER_GETMAXFILESIZE);
  return fileSize;
}