urlGen method

  1. @override
String urlGen (String _issuer, String _type)

Generate a url with TOTP instance.

@param {issuer} @type {String} @desc maybe it is the Service name

@return {String}

Implementation

@override
String urlGen(String _issuer, String _type) {
  _issuer ??= '';
  _type = 'totp';
  return super.urlGen(_issuer, _type);
}