MigrationTipView constructor

const MigrationTipView({
  1. Key? key,
  2. required String userId,
  3. Color backgroundColor = const Color(0xFF000000),
})

Implementation

const MigrationTipView({
  super.key,
  required this.userId,
  this.backgroundColor = const Color(0xFF000000),
});