toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final claim = this.claim;
  final matchType = this.matchType;
  final roleARN = this.roleARN;
  final value = this.value;
  return {
    'Claim': claim,
    'MatchType': matchType.toValue(),
    'RoleARN': roleARN,
    'Value': value,
  };
}