LocalTransport constructor
LocalTransport({
- String authenticationPassword = "password",
- SigningKey? authenticationKey,
Implementation
LocalTransport({
this.authenticationPassword = "password",
SigningKey? authenticationKey,
}) {
this.authenticationKey =
authenticationKey ??
SigningKey.fromSeed(
Uint8List.fromList("PasswordPasswordPasswordPassword".codeUnits),
);
}