Vat.fromJson constructor

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

Implementation

factory Vat.fromJson(Map<String, dynamic> json) => Vat(
      type: json["type"],
    );