BasePlatformInfoJsonable constructor

BasePlatformInfoJsonable({
  1. required String operatingSystem,
  2. required String operatingSystemVersion,
  3. required String dartVersion,
  4. required int numberOfProcessors,
  5. required String localHostname,
})

Implementation

BasePlatformInfoJsonable({
  required this.operatingSystem,
  required this.operatingSystemVersion,
  required this.dartVersion,
  required this.numberOfProcessors,
  required this.localHostname,
});