PostgreSqlSetting.fromJson constructor
PostgreSqlSetting.fromJson(
- Map json_
Implementation
PostgreSqlSetting.fromJson(core.Map json_)
: this(
boolValue: json_['boolValue'] as core.bool?,
intValue: json_['intValue'] as core.String?,
realValue: (json_['realValue'] as core.num?)?.toDouble(),
setting: json_['setting'] as core.String?,
source: json_['source'] as core.String?,
stringValue: json_['stringValue'] as core.String?,
unit: json_['unit'] as core.String?,
);