InformationSize.fromMebibytes constructor

InformationSize.fromMebibytes(
  1. Rational mebibytes
)

Creates an InformationSize representing the specified number of mebibytes.

Implementation

factory InformationSize.fromMebibytes(Rational mebibytes) =>
    InformationSize.fromUnits(InformationUnit.mebibyte, mebibytes);