all static method

DrivenColor all(
  1. Color value
)
override

Convenience method for creating a DrivenProperty that resolves to a single value for all events.

Implementation

static DrivenColor all(Color value) {
  return _DrivenColor((events) => value);
}