SDCardData constructor

SDCardData({
  1. int formatStatus = 0,
  2. int total = 0,
  3. int used = 0,
})

Implementation

SDCardData({
  this.formatStatus = 0,
  this.total = 0,
  this.used = 0,
});