toJson method

Map<String, dynamic> toJson()

Implementation

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