PropertyKey.fromJson constructor

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

Implementation

factory PropertyKey.fromJson(Map<String, Object?> json) {
  return PropertyKey(
    key: json[r'key'] as String?,
    self: json[r'self'] as String?,
  );
}