const View({String templateUrl, String template, List directives, List pipes, ViewEncapsulation encapsulation, List<String> styles, List<String> styleUrls })

Source

const View(
    {String templateUrl,
    String template,
    List<dynamic /* Type | List < dynamic > */ > directives,
    List<dynamic /* Type | List < dynamic > */ > pipes,
    ViewEncapsulation encapsulation,
    List<String> styles,
    List<String> styleUrls})
    : templateUrl = templateUrl,
      template = template,
      styleUrls = styleUrls,
      styles = styles,
      directives = directives,
      pipes = pipes,
      encapsulation = encapsulation;