sum method

int sum()

Returns a sum of codeUnits.

Implementation

int sum() => codeUnits.fold(0, (a, b) => a + b);