GoogleCastDiscoveryCriteriaInitialize.initWithNamespaces constructor

GoogleCastDiscoveryCriteriaInitialize.initWithNamespaces(
  1. Set<String> namespaces
)

Initializes with a set of namespaces.

Implementation

factory GoogleCastDiscoveryCriteriaInitialize.initWithNamespaces(
    Set<String> namespaces) {
  return GoogleCastDiscoveryCriteriaInitialize._(
    data: <String, dynamic>{
      'method': 'initWithNamespaces',
      'namespaces': namespaces,
    },
  );
}