create method
Creates a single-use login link for an Express account to access their Stripe dashboard.
You may only create login links for Express accounts connected to your platform.
Implementation
Future<LoginLink> create({
required String account,
LoginLinkCreateOptions? options,
}) async {
final $uri = Uri.parse('$_baseUri/v1/accounts/$account/login_links');
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 LoginLink.fromJson($json);
/// Error response.
case _:
final $json = _$convert.jsonDecode(_$convert.utf8.decode($body));
throw Error.fromJson($json);
}
}