loadStructuredData<T> method

Future<T> loadStructuredData <T>(String key, Future<T> parser(String value))

Retrieve a string from the asset bundle, parse it with the given function, and return the function's result.

Implementations may cache the result, so a particular key should only be used with one parser for the lifetime of the asset bundle.

Implementation

Future<T> loadStructuredData<T>(String key, Future<T> parser(String value));