fromAmino static method

Implementation

static Redelegation fromAmino(RedelegationAminoArgs data) {
  return Redelegation(
      data.redelegation!.delegator_Address!,
      data.redelegation!.validator_Src_Address!,
      data.redelegation!.validator_Dst_Address!,
      data.entries!.map((e) => Entry.fromAmino(e)).toList());
}