refreshToken method

Future<String> refreshToken()

Implementation

Future<String> refreshToken() async {
  token = await this.authenticate(customerCode: customerCode, category: category);
  return token;
}