Variables$Query$SimulateTransaction constructor

Variables$Query$SimulateTransaction({
  1. required Map<String, dynamic> tx,
  2. bool? checksEnabled,
  3. bool? doGasSelection,
})

Implementation

factory Variables$Query$SimulateTransaction({
  required Map<String, dynamic> tx,
  bool? checksEnabled,
  bool? doGasSelection,
}) => Variables$Query$SimulateTransaction._({
  r'tx': tx,
  if (checksEnabled != null) r'checksEnabled': checksEnabled,
  if (doGasSelection != null) r'doGasSelection': doGasSelection,
});