isFunction function

bool isFunction(
  1. dynamic value
)

Implementation

bool isFunction(dynamic value) {
  return value is Function;
}