mergeMac method

Uint8List mergeMac(
  1. SecretBox secretBox
)

Implementation

Uint8List mergeMac(SecretBox secretBox) {
  return Uint8List.fromList([]
    ..addAll(secretBox.mac.bytes)
    ..addAll(secretBox.cipherText));
}