setupUserData function
Sets up the user data.
Implementation
Future<void> setupUserData() async {
try {
await _platform.setupUserData();
} catch (error, stackTrace) {
Error.throwWithStackTrace(error, stackTrace);
}
}
Sets up the user data.
Future<void> setupUserData() async {
try {
await _platform.setupUserData();
} catch (error, stackTrace) {
Error.throwWithStackTrace(error, stackTrace);
}
}