fromJson static method

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

Implementation

static Overwrite fromJson(Map<String, dynamic> json) {
  return Overwrite(
    id: json['id'],
    type: json['type'],
    allow: json['allow'],
    deny: json['deny'],
  );
}