JwtGenerator constructor
Implementation
JwtGenerator(
{required this.credentialsFile, required this.scope, required this.dio})
: jwtCredentials = JwtCredentials.fromJson({
'settings': jsonDecode(File(credentialsFile).readAsStringSync()),
'scope': scope
});