AuthCancelCode constructor

const AuthCancelCode({
  1. required String phoneNumber,
  2. required String phoneCodeHash,
})

Auth Cancel Code constructor.

Implementation

const AuthCancelCode({
  required this.phoneNumber,
  required this.phoneCodeHash,
}) : super._();