call method
T
call([
- T? state
Implementation
T call([T? state]) {
if (state != null) {
this.state = state;
}
return this.state;
}
T call([T? state]) {
if (state != null) {
this.state = state;
}
return this.state;
}