getTotalRam method

Future<int> getTotalRam()

Returns total physical RAM in bytes.

Implementation

Future<int> getTotalRam() async {
  return await _channel.invokeMethod('info.getTotalRam') ?? 0;
}