toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final reportTime = this.reportTime;
  final systemRamFreeInfo = this.systemRamFreeInfo;
  return {
    'reportTime': ?reportTime?.toUtc().toIso8601String(),
    'systemRamFreeInfo': ?systemRamFreeInfo,
  };
}