index method

  1. @override
Future<String> index()
override

Provides an asynchronous method for rendering the index page of the controller.

This method returns an empty string by default. Subclasses should override this method to provide specific functionality for rendering the index view.

Returns a Future<String> that resolves to an empty string.

Implementation

@override
Future<String> index() async => "";