readHeader method

Future<void> readHeader(
  1. AFileReader channel
)

Read the header data from the DBF file.

@param channel A readable byte channel. If you have an InputStream you need to use, you can call java.nio.Channels.getChannel(InputStream in). @ If errors occur while reading.

Implementation

Future<void> readHeader(AFileReader channel) async {
  await readHeaderWithCharset(channel, Charset());
}