LoadDocumentOptions constructor

LoadDocumentOptions({
  1. bool? extractAllScripts,
  2. String? profile,
  3. dynamic requestProfile,
})

Implementation

factory LoadDocumentOptions(
        {bool? extractAllScripts, String? profile, dynamic requestProfile}) =>
    LoadDocumentOptions._(
        extractAllScripts: extractAllScripts ?? false,
        profile: profile ?? undefined,
        requestProfile: requestProfile ?? undefined);