uploadFragmentListCreationInfoAsBytes property

List<int> get uploadFragmentListCreationInfoAsBytes

Implementation

core.List<core.int> get uploadFragmentListCreationInfoAsBytes =>
    convert.base64.decode(uploadFragmentListCreationInfo!);
set uploadFragmentListCreationInfoAsBytes (List<int> bytes_)

Implementation

set uploadFragmentListCreationInfoAsBytes(core.List<core.int> bytes_) {
  uploadFragmentListCreationInfo = convert.base64
      .encode(bytes_)
      .replaceAll('/', '_')
      .replaceAll('+', '-');
}