RequestHandler constructor
RequestHandler({})
For instantiation, create the key secret on the fly with received values.
Implementation
RequestHandler({required this.consumerKey, required this.consumerSecret, required this.baseUrl})
: b64keySecret =
base64Url.encode((consumerKey + ":" + consumerSecret).codeUnits);