get method
Get User
Get a user by its unique ID.
Implementation
Future<Response> get({@required String userId}) {
final String path = '/users/{userId}'.replaceAll(RegExp('{userId}'), userId);
final Map<String, dynamic> params = {
};
final Map<String, String> headers = {
'content-type': 'application/json',
};
return client.call(HttpMethod.get, path: path, params: params, headers: headers);
}