search method

Future<Map<String, dynamic>?> search()

Search for the configuration.

Returns the configuration as a map, or null if no configuration was found.

Implementation

Future<Map<String, dynamic>?> search() async {
  final match = await findConfig();
  return match?.config;
}