WithdrawalDelayer.fromJson constructor
WithdrawalDelayer.fromJson(
- Map<String, dynamic> json
)
Implementation
factory WithdrawalDelayer.fromJson(Map<String, dynamic> json) {
return WithdrawalDelayer(
ethereumBlockNum: json['ethereumBlockNum'],
ethereumGovernanceAddress: json['ethereumGovernanceAddress'],
emergencyCouncilAddress: json['emergencyCouncilAddress'],
withdrawalDelay: json['withdrawalDelay'],
emergencyModeStartingBlock: json['emergencyModeStartingBlock'],
emergencyMode: json['emergencyMode'],
);
}