isNull function

  1. @Deprecated('Use inbuilt == operator comparison instead')
bool isNull(
  1. dynamic v
)

Implementation

@Deprecated('Use inbuilt == operator comparison instead')
bool isNull(v) => v == null;