isInstanceOf method

bool isInstanceOf(
  1. dynamic value
)

Checks if a dynamic value is an instance of this key's type.

Implementation

bool isInstanceOf(dynamic value) {
  return value is T;
}