mapIsNull<A, B> function

bool mapIsNull<A, B>(
  1. Map<A, B> x
)

Implementation

bool mapIsNull<A, B>(Map<A, B> x) => x.isEmpty || x.containsValue(null);