Query$GetEpoch$epoch.fromJson constructor

Query$GetEpoch$epoch.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$GetEpoch$epoch.fromJson(Map<String, dynamic> json) {
  final l$epochId = json['epochId'];
  final l$referenceGasPrice = json['referenceGasPrice'];
  final l$startTimestamp = json['startTimestamp'];
  return Query$GetEpoch$epoch(
    epochId: (l$epochId as int),
    referenceGasPrice: (l$referenceGasPrice as String?),
    startTimestamp: (l$startTimestamp as String?),
  );
}