FromPetaBytes static method

ByteSize FromPetaBytes(
  1. num value
)

Returns a ByteSize object initialized by size in PetaBytes.

var size = ByteSize.FromPetaBytes(10);

Implementation

static ByteSize FromPetaBytes(num value) =>
    ByteSize(value * _BytesInPetaByte);