Arg.fromJson constructor

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

Implementation

factory Arg.fromJson(Map<String, dynamic> json) => Arg(
      index: json["index"],
      format: json["format"],
      value: json["value"],
    );