toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final mac = this.mac;
  final macCrc32c = this.macCrc32c;
  final name = this.name;
  final protectionLevel = this.protectionLevel;
  final verifiedDataCrc32c = this.verifiedDataCrc32c;
  return {
    'mac': ?mac,
    'macCrc32c': ?macCrc32c,
    'name': ?name,
    'protectionLevel': ?protectionLevel,
    'verifiedDataCrc32c': ?verifiedDataCrc32c,
  };
}