TimestampPropertyOptions.fromJson constructor
TimestampPropertyOptions.fromJson(
- Map json_
Implementation
TimestampPropertyOptions.fromJson(core.Map json_)
: this(
operatorOptions:
json_.containsKey('operatorOptions')
? TimestampOperatorOptions.fromJson(
json_['operatorOptions']
as core.Map<core.String, core.dynamic>,
)
: null,
);