invite method

  1. @override
Future<Map<String, Object?>> invite({
  1. required AdminInviteBody body,
  2. String? authorization,
})
override

Implementation

@override
Future<Map<String, Object?>> invite({
  required AdminInviteBody body,
  String? authorization,
}) async {
  final response = await _client.request(
    method: 'POST',
    path: '/admin/invites',
    headers: {'authorization': authorization},
    body: body,
  );

  final _body = await response.transform(utf8.decoder).join();

  if (jsonDecode(_body) case {'data': final Map data}) {
    return data.map((key, value) => MapEntry((key as String), value));
  }

  throw Exception('Invalid response');
}