GetKeysChangesResponse.fromJson constructor

GetKeysChangesResponse.fromJson(
  1. Map<String, Object?> json
)

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']);