info method

  1. @override
Future<GeminiModel> info({
  1. required String model,
})

info If you GET a model's URL, the API used the get method to return information about that model such as version, display name, input token limit, etc.

Implementation

@override
Future<GeminiModel> info({required String model}) => _impl.info(model: model);