$SqlProperty.fromJson constructor

$SqlProperty.fromJson(
  1. Map json_
)

Implementation

$SqlProperty.fromJson(core.Map json_)
  : this(
      enabled: json_['enabled'] as core.bool?,
      numericValue: json_['numericValue'] as core.String?,
      property: json_['property'] as core.String?,
    );