readBool method

Future<bool> readBool()

Implementation

Future<bool> readBool() async {
  final a = await readData<bool>(1);
  return a[0];
}