listVerifications method

Future<XRPCResponse<VerificationListVerificationsOutput>> listVerifications({
  1. String? cursor,
  2. int? limit,
  3. DateTime? createdAfter,
  4. DateTime? createdBefore,
  5. List<String>? issuers,
  6. List<String>? subjects,
  7. String? sortDirection,
  8. bool? isRevoked,
  9. Map<String, String>? $headers,
  10. Map<String, String>? $unknown,
})

List verifications

Implementation

Future<XRPCResponse<VerificationListVerificationsOutput>> listVerifications({
  String? cursor,
  int? limit,
  DateTime? createdAfter,
  DateTime? createdBefore,
  List<String>? issuers,
  List<String>? subjects,
  String? sortDirection,
  bool? isRevoked,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneVerificationListVerifications(
  cursor: cursor,
  limit: limit,
  createdAfter: createdAfter,
  createdBefore: createdBefore,
  issuers: issuers,
  subjects: subjects,
  sortDirection: sortDirection,
  isRevoked: isRevoked,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);