toJson method

Map<String, dynamic> toJson()

转换为JSON格式

Implementation

Map<String, dynamic> toJson() {
  return {
    'systemName': systemName,
    'systemVersion': systemVersion,
    'model': model,
    'modelMachine': modelMachine,
    'modelName': modelName,
    'isPhysicalDevice': isPhysicalDevice,
    'brand': brand,
  };
}