toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'name': name,
    if (value != null) 'value': value!.toJson(),
    if (get != null) 'get': get!.toJson(),
    if (set != null) 'set': set!.toJson(),
  };
}