IdentityPoolShortDescription.fromJson constructor

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

Implementation

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