SentinelInfo.fromJson constructor

SentinelInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SentinelInfo.fromJson(Map<String, dynamic> json)
    : owner = Address.parse(json['owner']),
      registrationTimestamp = json['registrationTimestamp'],
      isRevocable = json['isRevocable'],
      revokeCooldown = json['revokeCooldown'],
      active = json['active'];