submitData method
Implementation
Future<void> submitData() async {
formKey.currentState?.save();
await ProfileUpdater(plugin, displayName, description, avatar, banner)
.save();
setState(() {});
// reload profile page
// ignore: use_build_context_synchronously
pushBase(context, selectedIndex: meIndex);
}