RelationalDatabaseParameter.fromJson constructor
RelationalDatabaseParameter.fromJson(
- Map<String, dynamic> json
)
Implementation
factory RelationalDatabaseParameter.fromJson(Map<String, dynamic> json) {
return RelationalDatabaseParameter(
allowedValues: json['allowedValues'] as String?,
applyMethod: json['applyMethod'] as String?,
applyType: json['applyType'] as String?,
dataType: json['dataType'] as String?,
description: json['description'] as String?,
isModifiable: json['isModifiable'] as bool?,
parameterName: json['parameterName'] as String?,
parameterValue: json['parameterValue'] as String?,
);
}