InformationSize.fromKibibytes constructor

InformationSize.fromKibibytes(
  1. Rational kibibytes
)

Creates an InformationSize representing the specified number of kibibytes.

Implementation

factory InformationSize.fromKibibytes(Rational kibibytes) =>
    InformationSize.fromUnits(InformationUnit.kibibyte, kibibytes);