getMoonWellness method
Future<InsightsResponse>
getMoonWellness(
- SingleSubjectRequest request, {
- RequestOptions? options,
Implementation
Future<InsightsResponse> getMoonWellness(
SingleSubjectRequest request, {
RequestOptions? options,
}) async {
final data = await http.post<Map<String, dynamic>>(
buildUrl(['moon-wellness']),
request.toJson(),
options: options,
);
return GenericResponse.fromJson(data);
}