PropertyChange.fromJson constructor
PropertyChange.fromJson(
- Map json_
Implementation
PropertyChange.fromJson(core.Map json_)
: this(
after: json_['after'],
afterSensitivePaths:
(json_['afterSensitivePaths'] as core.List?)
?.map((value) => value as core.String)
.toList(),
before: json_['before'],
beforeSensitivePaths:
(json_['beforeSensitivePaths'] as core.List?)
?.map((value) => value as core.String)
.toList(),
path: json_['path'] as core.String?,
);