TencentLocationError constructor

const TencentLocationError({
  1. required TencentLocationErrorCode code,
  2. required String message,
  3. int? nativeCode,
  4. String? nativeMessage,
  5. Object? details,
})

Implementation

const TencentLocationError({
  required this.code,
  required this.message,
  this.nativeCode,
  this.nativeMessage,
  this.details,
});