I receive the following issue within the Reddit.createScriptInstance method while using version 1.0.0 with NullSafety. Before I was using another version without Null Safety and everything worked fine for me.
Error Message
type '_InternalLinkedHashMap<String, String?>' is not a subtype of type 'Map<String, String>?' in type cast
My implementation
await Reddit.createScriptInstance(
clientId: clientId,
clientSecret: secret,
userAgent: 'ChangeMeClient/0.1 by Name',
username: username,
password: password,
);
I receive the following issue within the
Reddit.createScriptInstancemethod while using version 1.0.0 with NullSafety. Before I was using another version without Null Safety and everything worked fine for me.Error Message
type '_InternalLinkedHashMap<String, String?>' is not a subtype of type 'Map<String, String>?' in type castMy implementation