WalletCommand constructor

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

Implementation

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