readDateTimeOrNullList method

List<DateTime?>? readDateTimeOrNullList(
  1. int offset
)

Implementation

List<DateTime?>? readDateTimeOrNullList(int offset) {
  return readLongOrNullList(offset)?.map((e) {
    if (e != null) {
      return DateTime.fromMicrosecondsSinceEpoch(e, isUtc: true).toLocal();
    }
  }).toList();
}