amountFromJson function

BigInt amountFromJson(
  1. String? value
)

Implementation

BigInt amountFromJson(String? value) {
  return value != null ? BigInt.parse(value) : BigInt.zero;
}