EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleDoubleRange.fromJson constructor

EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleDoubleRange.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleDoubleRange.fromJson(
  core.Map json_,
) : this(
      max: (json_['max'] as core.num?)?.toDouble(),
      min: (json_['min'] as core.num?)?.toDouble(),
    );