dartclub/firestore_dart

[firestore_serialize] List<String> can't be converted

Closed this issue · 2 comments

Error

'List<dynamic>' is not a subtype of type 'List<String>'

Workaround for now

 Model({
   this.selfRef,
   List tags,
 }) {
   this.tags = tags.cast<String>();
 }

Let me investigate that

Is the type <String> annotated for the class member?

I will prepare a new release