ServiceAccountCredentials.fromJson constructor

ServiceAccountCredentials.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ServiceAccountCredentials.fromJson(Map<String, dynamic> json) {
  return ServiceAccountCredentials(
    accountName: json['AccountName'] as String,
    accountPassword: json['AccountPassword'] as String,
  );
}