FTabEntry.entry constructor

const FTabEntry.entry({
  1. required Widget label,
  2. required Widget child,
})

Creates a FTabEntry.

This is identical to FTabEntry.new, allowing dot-shorthand construction.

Implementation

const factory FTabEntry.entry({required Widget label, required Widget child}) = FTabEntry;