Iterable<ModelType> whereByStatus(bool? status) => where((element) => status == null || element.status == status);