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