getUniqueId method
For internal use only. Implementation detail that may change anytime.
Return a string with a unique ID
Implementation
String getUniqueId() {
final id = _idCounter;
_idCounter += 1;
return '_$id';
}
For internal use only. Implementation detail that may change anytime.
Return a string with a unique ID
String getUniqueId() {
final id = _idCounter;
_idCounter += 1;
return '_$id';
}