judgeNull method

  1. @protected
bool judgeNull(
  1. DataResponse<E?>? data
)

判断数据是否为空 可自行实现逻辑

Implementation

@protected
bool judgeNull(DataResponse<E?>? data) =>
    !checkEmpty ? false : list == null || list!.isEmpty;