Decimal.fromJson constructor

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

Implementation

factory Decimal.fromJson(Map<String, dynamic> json) {
  return Decimal(value: json['value'] ?? '');
}