toJson method

Map<String, dynamic> toJson()

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,
  };
}