func scrollToBottom()

in Example/AmazonFreeRTOSDemo/AmazonFreeRTOSDemo/Extensions/UITextView+Amazon.swift [5:10]


    func scrollToBottom() {
        guard !text.isEmpty else {
            return
        }
        scrollRangeToVisible(NSRange(location: text.count - 1, length: 1))
    }