toJson method

Map<String, dynamic> toJson()

Implementation

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