decodeJsonInIsolate function

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

Esegue la decode json in un isolate

Implementation

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