MemoryInfo constructor

MemoryInfo({
  1. String? totalInternalStorage,
  2. String? totalRam,
})

Implementation

MemoryInfo({
  this.totalInternalStorage,
  this.totalRam,
});