Yt.withJwt constructor Null safety
Implementation
factory Yt.withJwt(String credentialsFile, String scope) {
Yt yt = Yt();
yt.tokenGenerator =
JwtGenerator(credentialsFile: credentialsFile, scope: scope, dio: dio);
return yt;
}
factory Yt.withJwt(String credentialsFile, String scope) {
Yt yt = Yt();
yt.tokenGenerator =
JwtGenerator(credentialsFile: credentialsFile, scope: scope, dio: dio);
return yt;
}