PulsePhone constructor

  1. @HiveType.new(typeId: 10, adapterName: 'PulsePhoneAdapter')
const PulsePhone({
  1. @HiveField.new(0) String? number,
  2. @HiveField.new(1) String? countryCode,
})

Implementation

@HiveType(typeId: 10, adapterName: 'PulsePhoneAdapter')
const factory PulsePhone({
  @HiveField(0) String? number,
  @HiveField(1) String? countryCode,
}) = _PulsePhone;