registerMessagesResourcePath method

Future<bool> registerMessagesResourcePath(
  1. String resourcePath
)

Register a specific resourcePath, without localized versions capability like IntlResourceContent.

Implementation

Future<bool> registerMessagesResourcePath(String resourcePath) async {
  var resource = Resource(resourcePath);
  return registerMessagesResource(resource);
}