authing 0.1.3 copy "authing: ^0.1.3" to clipboard
authing: ^0.1.3 copied to clipboard

outdated

Authing dart sdk for flutter and dart Apps, you can gently auth to your App with Authing.

example/main.dart

import 'package:authing/authing.dart';

main() async {
	Options opts = Options(
		userPoolId: '...',
		secret: '...',
	);
	
	/// init authing client
	Authing authing = Authing(opts);

  /// handle res
	var res = await authing.register(
		username: 'David Bowie',
		email: 'bowie@mars.uni',
		password: 'hallo-spaceboy'
	);
	
	if (res.hasErrors) print(res.errors);
	print(res.data);
}
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Authing dart sdk for flutter and dart Apps, you can gently auth to your App with Authing.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

encrypt, graphql, meta, pointycastle

More

Packages that depend on authing