encodeJsonInIsolate function

Future<Validation> encodeJsonInIsolate(
  1. String json,
  2. FromErrorMessage customMessageToError
)

Esegue l'encode di un json in un isolate

Implementation

Future<Validation> encodeJsonInIsolate(String json, FromErrorMessage customMessageToError)
          => IsolateManager.prepare(json, isolateEntryPoint: _jsonEncode, customMessageToError: customMessageToError).start();