WireDataBuilder<T> constructor

WireDataBuilder<T>({
  1. Key? key,
  2. required String dataKey,
  3. required WireDataWidgetBuilder<T> builder,
  4. bool rebuildWhen(
    1. T
    )?,
  5. WireDataWidgetNullBuilder? nullBuilder,
  6. bool isStatic = false,
})

Implementation

WireDataBuilder({
  Key? key,
  required this.dataKey,
  required this.builder,
  this.rebuildWhen,
  this.nullBuilder,
  this.isStatic = false
}) : super(key: key);