isInstanceOf method

bool isInstanceOf(
  1. dynamic value
)

Implementation

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