isIdentical method

dynamic isIdentical(
  1. Object o
)

Implementation

isIdentical(Object o) {
  return identical(this, o) || (o.runtimeType == this.runtimeType);
}