LocationChangeEvent constructor

LocationChangeEvent({
  1. required String error,
  2. required bool isSuccessful,
  3. required Location location,
})

Implementation

LocationChangeEvent({
  required String error,
  required bool isSuccessful,
  required this.location,
}) : super(
  error: error,
  isSuccessful: isSuccessful,
);