getCustomer method
Implementation
Future<Customer> getCustomer({required String customerId}) async {
try {
return await AnsaFlutterSdkPlatform.instance.getCustomer(
customerId: customerId,
);
} catch (e) {
_logger.error('Failed to get customer', e);
rethrow;
}
}