toBits64 method

String toBits64([
  1. String separator = ' '
])

Coverts this Uint32List elements to a sequence of String of 32 bits.

Implementation

String toBits64([String separator = ' ']) =>
    map((n) => n.bits64).join(separator);