buildDefText function
Implementation
String buildDefText(
dynamic value,
{
int levelSpaceCount = 4,
String quote = '´'
}
)
{
var context =
BuildingContext(
levelSpaceCount : levelSpaceCount,
quote : quote
);
buildDefValue( value, context, 0 );
return context.lineArray.join( '\n' );
}