Refactor member page (#3)

* refactor: member page

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
This commit is contained in:
bggRGjQaUbCoE
2024-10-17 11:18:59 +08:00
committed by GitHub
parent 270bf0a4b6
commit f77088b870
205 changed files with 70072 additions and 119 deletions

View File

@@ -0,0 +1,21 @@
import 'package:json_annotation/json_annotation.dart';
import 'color_config.dart';
part 'draw.g.dart';
@JsonSerializable()
class Draw {
@JsonKey(name: 'draw_type')
int? drawType;
@JsonKey(name: 'fill_mode')
int? fillMode;
@JsonKey(name: 'color_config')
ColorConfig? colorConfig;
Draw({this.drawType, this.fillMode, this.colorConfig});
factory Draw.fromJson(Map<String, dynamic> json) => _$DrawFromJson(json);
Map<String, dynamic> toJson() => _$DrawToJson(this);
}