addMegaBytes method

ByteSize addMegaBytes(
  1. num value
)

Returns the sum of size in MegaBytes and current ByteSize instance.

Implementation

ByteSize addMegaBytes(num value) =>
    this + FromMegaBytes(value);