TimestampPropertyOptions.fromJson constructor

TimestampPropertyOptions.fromJson(
  1. 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,
    );