SystemState constructor

const SystemState({
  1. required String epoch,
  2. required String referenceGasPrice,
  3. Map<String, dynamic>? systemState,
  4. String? epochStartTimestampMs,
})

Implementation

const SystemState({
  required this.epoch,
  required this.referenceGasPrice,
  this.systemState,
  this.epochStartTimestampMs,
});