isNull static method

bool isNull(
  1. dynamic s
)

判断对象是否为null

Implementation

static bool isNull(dynamic s) => s == null;