CreatedByDataEntity.fromJson constructor

CreatedByDataEntity.fromJson(
  1. dynamic json
)

Creates a new UserReferenceDataEntity Object from json json needs to be an object that is parsed with CreatedBy.fromJson

Implementation

factory CreatedByDataEntity.fromJson(dynamic json) {
  CreatedBy? jsonValue;
  if (json != null) {
    jsonValue = CreatedBy.fromJson(json);
  }
  return CreatedByDataEntity(jsonValue);
}