toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final totalInternalStorage = this.totalInternalStorage;
final totalRam = this.totalRam;
return {
'totalInternalStorage': ?totalInternalStorage,
'totalRam': ?totalRam,
};
}