ByteConverter constructor

ByteConverter(
  1. double _bytes
)

Implementation

ByteConverter(this._bytes) {
  _bits = (_bytes * 8.0).ceil();
}