isNewId static method

bool isNewId(
  1. String? id
)

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);
}