contains<T> static method

bool contains<T>({
  1. T? value,
  2. String? key,
})

Implementation

static bool contains<T>({T? value, String? key}) {
  return instance.contains<T>(value: value, key: key);
}