toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
'name': name,
'columnType': columnType.toJson(),
'isNullable': isNullable,
if (columnDefault != null) 'columnDefault': columnDefault,
if (dartType != null) 'dartType': dartType,
};
}