gravatarProfileJSONUrl method

String gravatarProfileJSONUrl({
  1. String? scheme,
  2. String? callback,
})

Implementation

String gravatarProfileJSONUrl({
  String? scheme,
  String? callback,
}) {
  final url = Gravatar(this).profileJSON(
    scheme: scheme,
    callback: callback,
  );
  return url.toString();
}