BusinessLocation constructor
      const
      BusinessLocation({})
     
    
Creates a BusinessLocation object.
Implementation
const factory BusinessLocation({
  /// Address of the business.
  @JsonKey(name: 'address') required String address,
  /// Optional. Location of the business.
  @JsonKey(name: 'location') Location? location,
}) = _BusinessLocation;