GetExistingTransactionIndexesResponse constructor

GetExistingTransactionIndexesResponse({
  1. IndexSpecs? indexSpecs,
})

Implementation

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