itemPagePost method
Close item page and post current (selectedItem) item to databese (server) если goBack == true (по умолчанию), после сохранения элемента, будет выполнен переход назад useValidation == true перед сохранением проводится валидация В случае успешного сохранения возвращает true
Implementation
@override
Future<bool> itemPagePost({bool goBack = true, bool useValidation = true}) async {
(currentItem as NsgUserSettings).settings = jsonEncode(settingsMap);
currentItem.storageType = controllerMode.storageType;
return await super.itemPagePost(goBack: goBack, useValidation: useValidation);
}