Appends a new line by appending an optional value.

import {StringBuilder} from "nativescript-stringformat";

// "MK = 23979
// 
// TM = 5979"
var str = new StringBuilder()
    .appendLine("MK = 23979")
    .appendLine()
    .append('TM = 5979');