customerTokenInfo method
Implementation
Future<void> customerTokenInfo(Map<String, dynamic> request, Function(Map<String, dynamic>) response, Function(dynamic) error) async {
try {
response.call(json.decode(await _api.customerTokenInfo(json.encode(request))));
} catch (e) {
error.call(e);
}
}