MigrationTipView constructor

const MigrationTipView({
  1. Key? key,
  2. @Deprecated('Identify-first: the offer tip resolves the user from identify(_:). ' 'This parameter is ignored; will be removed in zerosettle 2.0.') String userId = '',
  3. Color backgroundColor = const Color(0xFF000000),
})

Implementation

const MigrationTipView({
  super.key,
  @Deprecated(
    'Identify-first: the offer tip resolves the user from identify(_:). '
    'This parameter is ignored; will be removed in zerosettle 2.0.',
  )
  this.userId = '',
  this.backgroundColor = const Color(0xFF000000),
});