Args.fromJson constructor

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

Implementation

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