IdentityPoolShortDescription.fromJson constructor
Implementation
factory IdentityPoolShortDescription.fromJson(Map<String, dynamic> json) {
return IdentityPoolShortDescription(
identityPoolId: json['IdentityPoolId'] as String?,
identityPoolName: json['IdentityPoolName'] as String?,
);
}