Create a dart file that contains the following functions :
Write a function deleteLastCharacter that receives String. The function deletes the last character of the text and returns the text value after deletion.
Write a function evenOrOdd that receives a number int. The function returns the value "odd" if the number is odd, and the value "even" if the number is even.
Write a function stringCheck that takes a list of type String. The function checks the similar values in the list, returning true if the values are equal and false if otherwise.
E.g.
Input ["Dart", "Dart", "Dart"]
Return true
Input ["Dart", "Java", "Dart"]
Return false