getScreenAmount method

String? getScreenAmount()

Liquid Galaxy Services:

Gets the Liquid Galaxy rig screen amount. Returns a String that represents the screen amount.

Implementation

/// Gets the Liquid Galaxy rig screen amount. Returns a [String] that represents the screen amount.
String? getScreenAmount() {
  int numberOfScreen = _sshData.numberOfScreens!;
  screenAmount = numberOfScreen;
  String? result = numberOfScreen.toString();
  return result;
}