gravatar_utils 1.0.0 copy "gravatar_utils: ^1.0.0" to clipboard
gravatar_utils: ^1.0.0 copied to clipboard

A library to generate Gravatar URLs.

example/gravatar_utils_example.dart

import 'package:gravatar_utils/gravatar_utils.dart';

void main(List<String> arguments) {
  for (final email in arguments) {
    final gravatar = Gravatar(email);
    print('Gravatar image URL: ${gravatar.image(scheme: 'https')}');
    print('Gravatar profile URL: ${gravatar.profile(scheme: 'https')}');
    print('Gravatar profile JSON URL: ${gravatar.profileJSON(scheme: 'https')}');
    print('Gravatar profile XML URL: ${gravatar.profileXML(scheme: 'https')}');
    print('Gravatar profile VCF URL: ${gravatar.profileVCF(scheme: 'https')}');
    print('Gravatar profile QR URL: ${gravatar.profileQR(scheme: 'https')}');
  }
}
2
likes
130
points
75
downloads

Publisher

verified publisherwebtrit.com

Weekly Downloads

A library to generate Gravatar URLs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

crypto

More

Packages that depend on gravatar_utils