Entity.fromJson constructor

Entity.fromJson(
  1. Map json_
)

Implementation

Entity.fromJson(core.Map json_)
    : this(
        id: json_['id'] as core.String?,
        typeId: json_['typeId'] as core.String?,
        url: json_['url'] as core.String?,
      );