setTranslations method

Future<void> setTranslations({
  1. required String fileNameOrPath,
  2. String? packageName,
  3. required dynamic callback(
    1. FlyResponse response
    ),
})

Sets custom translations for the MirrorFly platform.

Implementation

Future<void> setTranslations({
  required String fileNameOrPath,
  String? packageName,
  required Function(FlyResponse response) callback,
}) {
  throw UnimplementedError('setTranslations() has not been implemented.');
}