UDbColumnResponse.fromMap constructor
Implementation
factory UDbColumnResponse.fromMap(Map<String, dynamic> json) => UDbColumnResponse(
name: json["name"] ?? "",
dataType: json["dataType"] ?? "",
isNullable: json["isNullable"] ?? false,
isPrimaryKey: json["isPrimaryKey"] ?? false,
ordinalPosition: (json["ordinalPosition"] ?? 0) as int,
defaultValue: json["default"],
);