GetKeysChangesResponse.fromJson constructor
Implementation
GetKeysChangesResponse.fromJson(Map<String, Object?> json)
: changed = ((v) => v != null
? (v as List).map((v) => v as String).toList()
: null)(json['changed']),
left = ((v) => v != null
? (v as List).map((v) => v as String).toList()
: null)(json['left']);