Withdrawals.fromJson constructor

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

Implementation

factory Withdrawals.fromJson(Map<String, dynamic> json) {
  return Withdrawals({
    for (final i in json.entries)
      ADAAddress.fromAddress(i.key): BigintUtils.parse(i.value)
  });
}