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!;
}
}