CognitoIdentityProvider.fromJson constructor
Implementation
factory CognitoIdentityProvider.fromJson(Map<String, dynamic> json) {
return CognitoIdentityProvider(
clientId: json['ClientId'] as String?,
providerName: json['ProviderName'] as String?,
serverSideTokenCheck: json['ServerSideTokenCheck'] as bool?,
);
}