ServiceAccountAuthenticator constructor

ServiceAccountAuthenticator(
  1. String serviceAccountJsonString,
  2. List<String> scopes
)

Implementation

factory ServiceAccountAuthenticator(
  String serviceAccountJsonString,
  List<String> scopes,
) => ServiceAccountAuthenticator.fromJson(
  jsonDecode(serviceAccountJsonString),
  scopes,
);