getAllState method
Retrieves all shared states across all types.
Returns a Future that completes with a Map containing all stored states. If no states exist, returns an empty map.
Implementation
@override
Future<Map<String, dynamic>> getAllState() async {
final result =
await methodChannel.invokeMapMethod<String, dynamic>('getAllState') ??
{};
return result;
}