CleanupExpiredReservationsCommand constructor

CleanupExpiredReservationsCommand({
  1. required String walletId,
  2. DateTime? cutoffTime,
  3. String? commandId,
  4. DateTime? timestamp,
  5. Map<String, dynamic>? metadata,
})

Implementation

CleanupExpiredReservationsCommand({
  required String walletId,
  this.cutoffTime,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        walletId: walletId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );