createSession method
Create an authentication session.
Implementation
Future<XRPCResponse<ServerCreateSessionOutput>> createSession({
required String identifier,
required String password,
String? authFactorToken,
bool? allowTakendown,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoServerCreateSession(
identifier: identifier,
password: password,
authFactorToken: authFactorToken,
allowTakendown: allowTakendown,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);