read method

Future<String?> read({
  1. PromptInfo? promptInfo,
})

read from the secure file and returns the content. Will return null if file does not exist.

Implementation

Future<String?> read({PromptInfo? promptInfo}) =>
    _plugin.read(name, promptInfo ?? defaultPromptInfo);