authing 0.1.7 copy "authing: ^0.1.7" to clipboard
authing: ^0.1.7 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: '5df760579d0df45585a2b7b3',
		secret: 'dc1501dff92e6b36c67f51a6b6f4e17c',
	);
	
	/// init authing client
	Authing authing = Authing(opts);

  /// handle res
	var res = await authing.register(
		username: 'David Bowie',
		email: 'bowie@mars.uni',
		password: 'hallo-spaceboy',
	);
	
	res.hasErrors? print(res.errors): print(res.data);
}
0
likes
35
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

MIT (LICENSE)

Dependencies

encrypt, graphql, meta, pointycastle

More

Packages that depend on authing