Quantity.fromJson constructor

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

Implementation

factory Quantity.fromJson(Map<String, dynamic> json) =>
    Quantity(decimals: json['decimals'], numeric: json['numeric']);