PreloadWalletCommand constructor

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

Implementation

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