toBits32 method

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

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

Implementation

String toBits32([String separator = ' ']) =>
    map((n) => n.bits32).join(separator);