getContact method
GET /{version}/membership/users/{contactId}
Implementation
Future<Object?> getContact(
{required Object contactId,
Map<String, Object?>? query,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/membership/users/{contactId}',
method: 'GET',
query: query,
headers: headers,
pathParams: <String, Object?>{'contactId': contactId},
);
}