supported property - WeekInputElement class - dart:html library (original) (raw)

description

bool getsupported

Returns true if this input type is supported on the current platform.

Implementation

static bool get supported {
  return (new InputElement(type: 'week')).type == 'week';
}