SystemPic constructor

SystemPic({
  1. required int id,
  2. required String url,
  3. required int type,
  4. String? intro,
})

Implementation

SystemPic({
  required this.id,
  required this.url,
  required this.type,
  this.intro,
});