UpdateUserPoolClientResponse.fromJson constructor

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

Implementation

factory UpdateUserPoolClientResponse.fromJson(Map<String, dynamic> json) {
  return UpdateUserPoolClientResponse(
    userPoolClient: json['UserPoolClient'] != null
        ? UserPoolClientType.fromJson(
            json['UserPoolClient'] as Map<String, dynamic>)
        : null,
  );
}