create method
Creates a test mode Confirmation Token server side for your integration tests.
Implementation
Future<ConfirmationToken> create(
{ConfirmationTokenCreateOptions? options}) async {
final $uri = Uri.parse('$_baseUri/v1/test_helpers/confirmation_tokens');
final $request = _$http.Request(
'POST',
$uri,
);
if (options != null) {
$request.body = options.encodeWith(coder.formData.encoder);
}
$request.headers['Content-Type'] = 'application/x-www-form-urlencoded';
$request.headers['Accept'] = 'application/json';
final $response = await _httpClient.send($request);
final $body = await $response.stream.toBytes();
switch ($response.statusCode) {
/// Successful response.
case 200:
final $json = _$convert.jsonDecode(_$convert.utf8.decode($body));
return ConfirmationToken.fromJson($json);
/// Error response.
case _:
final $json = _$convert.jsonDecode(_$convert.utf8.decode($body));
throw Error.fromJson($json);
}
}