I want to print specific part of String in dart Example:
String sample = "Hello World";
Output:
llo Wor
Like In Python We do this simply By:
print(sample[2:-2])
But How to achieve this in Dart Language
If you know the Solution then answer this question.