JsonSettings constructor

JsonSettings({
  1. required String type,
  2. required String projectId,
  3. required String projectKeyId,
  4. required String privateKey,
  5. required String clientEmail,
  6. required String clientId,
  7. required String authUri,
  8. required String tokenUri,
  9. required String authProviderX509CertUrl,
  10. required String clientX509CertUrl,
})

Implementation

JsonSettings(
    {required this.type,
    required this.projectId,
    required this.projectKeyId,
    required this.privateKey,
    required this.clientEmail,
    required this.clientId,
    required this.authUri,
    required this.tokenUri,
    required this.authProviderX509CertUrl,
    required this.clientX509CertUrl});