base64DecodedNullSafeByteData method

ByteData base64DecodedNullSafeByteData()

Returns null safe ByteData from an encoded String.

Implementation

ByteData base64DecodedNullSafeByteData() {
  return ByteData.view(base64Decode(substring(8, length - 12)).buffer);
}