PropertyValue.fromJson constructor

PropertyValue.fromJson(
  1. Map json_
)

Implementation

PropertyValue.fromJson(core.Map json_)
  : this(
      boolValue: json_['boolValue'] as core.bool?,
      doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
      durationValue: json_['durationValue'] as core.String?,
      intValue: json_['intValue'] as core.String?,
      stringValue: json_['stringValue'] as core.String?,
      timestampValue: json_['timestampValue'] as core.String?,
    );