DateOperatorOptions.fromJson constructor

DateOperatorOptions.fromJson(
  1. Map json_
)

Implementation

DateOperatorOptions.fromJson(core.Map json_)
    : this(
        greaterThanOperatorName:
            json_['greaterThanOperatorName'] as core.String?,
        lessThanOperatorName: json_['lessThanOperatorName'] as core.String?,
        operatorName: json_['operatorName'] as core.String?,
      );