attrValue.dart 327 B

1234567891011121314
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'attrValue.g.dart';
  3. @JsonSerializable()
  4. class AttrValue {
  5. AttrValue();
  6. String attr;
  7. bool check;
  8. factory AttrValue.fromJson(Map<String,dynamic> json) => _$AttrValueFromJson(json);
  9. Map<String, dynamic> toJson() => _$AttrValueToJson(this);
  10. }