You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
372 B

import 'package:flutter/material.dart';
class ContentTab {
final String id;
final String title;
final String? type; // 新增类型字段
final IconData? icon; // 新增图标字段
String content;
String? fileName;
ContentTab({
required this.id,
required this.title,
this.type,
this.icon,
this.content = '',
this.fileName,
});
}