WippyHeaderTitle constructor

const WippyHeaderTitle({
  1. required String text,
  2. @Default(null) void onPressedProfileImage()?,
  3. @Default(null) String? profileImageUrl,
  4. @Default(null) String? errorPlaceHolder,
  5. @Default(null) String? placeHolder,
  6. @Default(null) String? iconAsset,
  7. @Default(null) Color? iconColor,
})

Implementation

const factory WippyHeaderTitle({
  required String text,
  @Default(null) void Function()? onPressedProfileImage,
  @Default(null) String? profileImageUrl,
  @Default(null) String? errorPlaceHolder,
  @Default(null) String? placeHolder,
  @Default(null) String? iconAsset,
  @Default(null) Color? iconColor,
}) = _WippyHeaderTitle;