fromJson static method

RefProperty fromJson(
  1. dynamic wrapped
)
override

Implementation

static RefProperty fromJson(wrapped) => wrapped is RefProperty
  ? wrapped
  : RefProperty(wrapped as Map<String, dynamic>, update: true);