MaxTransactionsPerSecondResponse constructor

MaxTransactionsPerSecondResponse({
  1. SimpleInt? maxTxsPerSecond,
})

Implementation

factory MaxTransactionsPerSecondResponse({
  $7.SimpleInt? maxTxsPerSecond,
}) {
  final _result = create();
  if (maxTxsPerSecond != null) {
    _result.maxTxsPerSecond = maxTxsPerSecond;
  }
  return _result;
}