getTags function

Object? getTags(
  1. Object? tags
)

Casts tags from Dart Object to JavaScript Object

Implementation

Object? getTags(Object? tags) {
  return tags != null ? jsify(tags) : null;
}