flutter 单例
class Student {
String? name;
int? age;
//构造方法
Student({this.name, this.age});
// 单例方法
static Student? _dioInstance;
static Student instanceSingleStudent() {
if (_dioInstance == null) {
_dioInstance = Student();
}
return _dioInstance!;
}
}