isNewId static method
Returns true of the specified id was returned by createNewId
Implementation
static bool isNewId(String? id) {
if(id == null) {
return false;
}
return id.startsWith(newId);
}
Returns true of the specified id was returned by createNewId
static bool isNewId(String? id) {
if(id == null) {
return false;
}
return id.startsWith(newId);
}