Flag.fromJson constructor

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

Implementation

Flag.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  key = json['key'];
  defaultValue = json['defaultValue'];
  status = json['status'];
}