toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final isWeakReference = this.isWeakReference;
  final key = this.key;
  final list = this.list;
  final map = this.map;
  final type = this.type;
  final value = this.value;
  return {
    'isWeakReference': ?isWeakReference,
    'key': ?key,
    'list': ?list,
    'map': ?map,
    'type': ?type,
    'value': ?value,
  };
}