debugLog method
Logs state changes to the console.
Implementation
void debugLog([String? name]) {
addListener(() {
log('Mastro${name != null ? "($name)" : ""}<$T> updated: $value');
});
}
Logs state changes to the console.
void debugLog([String? name]) {
addListener(() {
log('Mastro${name != null ? "($name)" : ""}<$T> updated: $value');
});
}