myTexts property

Map<String, String>? get myTexts

Implementation

Map<String, String>? get myTexts => texts;
set myTexts (Map<String, String> book)

Implementation

set myTexts(Map<String, String> book) {
  texts = book;
}