0

I copied this code from flutter_google_places_autocomplete, but my app can't starting more.

How can i solve this problem?

import 'package:flutter/material.dart';
import 'package:flutter_google_places_autocomplete/flutter_google_places_autocomplete.dart';
import 'package:flutter_prayer_times/place_search_banner_field.dart';


// Google Api Key
const googleMapsApiKey = "......";

// to get places detail (lat/lng)
GoogleMapsPlaces _places = GoogleMapsPlaces(apiKey: googleMapsApiKey);
Launching lib\main.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
Running Gradle task 'assembleDebug'...
Kotlin plugin should be enabled before 'kotlin-android-extensions'

Compiler message:
file:///C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_google_places_autocomplete-0.1.0/lib/src/flutter_google_places_autocomplete.dart:327:35: Error: Too many positional arguments: 0 allowed, but 1 found.
Try removing the extra positional arguments.
    _places = new GoogleMapsPlaces(widget.apiKey);
                                  ^
file:///C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/google_maps_webservice-0.0.14/lib/src/places.dart:22:3: Context: Found this candidate, but the arguments don't match.
  GoogleMapsPlaces({
  ^
Compiler failed on C:\Users\GaminKh\Desktop\MyProjects\prayertimes\flutter_prayer_times\lib\main.dart
Finished with error: Gradle task assembleDebug failed with exit code 1

Mahendra Gohil
  • 380
  • 1
  • 3
  • 21
Khalil Khalil
  • 491
  • 7
  • 17

1 Answers1

1

flutter_google_places_autocomplete is deprecated and you should use flutter_google_places. Check this link for complete answer.

Darshan
  • 10,550
  • 5
  • 49
  • 61