getMotorista method

Future<String?> getMotorista()

Implementation

Future<String?> getMotorista() async {
  var motorista = await this.get('edtMotorista');
  return motorista;
}