GetExistingTransactionIndexesResponse constructor

GetExistingTransactionIndexesResponse({
  1. IndexSpecs? indexSpecs,
})

Implementation

factory GetExistingTransactionIndexesResponse({
  IndexSpecs? indexSpecs,
}) {
  final _result = create();
  if (indexSpecs != null) {
    _result.indexSpecs = indexSpecs;
  }
  return _result;
}