LodgingMetadata.fromJson constructor

LodgingMetadata.fromJson(
  1. Map json_
)

Implementation

LodgingMetadata.fromJson(core.Map json_)
    : this(
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );