createPersonCustomer method
Create person customer quickly
Implementation
Future<Party> createPersonCustomer(CreatePersonCustomerRequest request) async {
final response = await _apiClient.post<Map<String, dynamic>>(
'/api/v1/parties/customers/person',
data: request.toJson(),
);
return Party.fromJson(response);
}