getNumDevicesVendedor method

Future<int> getNumDevicesVendedor()

Implementation

Future<int> getNumDevicesVendedor() async {
  int numDevices = int.parse((await (this.get('numDevicesVendedor')))!);
  return numDevices;
}