Row.fromJson constructor
Implementation
factory Row.fromJson(Map<String, dynamic> json) => new Row(
json['amount'] as String,
json['price'] as String,
json['price_r'] == null
? null
: new Price.fromJson(json['price_r'] as Map<String, dynamic>));