Property.fromJson constructor

Property.fromJson(
  1. Map json_
)

Implementation

Property.fromJson(core.Map json_)
  : this(
      builtYear: json_['builtYear'] as core.int?,
      builtYearException: json_['builtYearException'] as core.String?,
      floorsCount: json_['floorsCount'] as core.int?,
      floorsCountException: json_['floorsCountException'] as core.String?,
      lastRenovatedYear: json_['lastRenovatedYear'] as core.int?,
      lastRenovatedYearException:
          json_['lastRenovatedYearException'] as core.String?,
      roomsCount: json_['roomsCount'] as core.int?,
      roomsCountException: json_['roomsCountException'] as core.String?,
    );