Skip to content

dart_late

ShenYj edited this page Aug 23, 2024 · 1 revision

late

用于延迟初始化

class Person {
    late String name;

    void setName(String name) {
        this.name = name;
    }
}

Getting Started

Social

Clone this wiki locally