getBytes static method

Uint8List getBytes(
  1. int c, [
  2. int? c2
])

Implementation

static Uint8List getBytes(int c, [int? c2]) =>
    Uint8List.fromList([c, if (c2 != null) c2]);