isDefined function

bool isDefined(
  1. dynamic param
)

Implementation

bool isDefined(dynamic param) {
  return param != null;
}