readSnippet method

Future<Snippet> readSnippet({
  1. required String siteId,
  2. String? authToken,
})

Retrieves your snippet from a Square Online site.

A site can contain snippets from multiple snippet applications, but you can retrieve only the snippet that was added by your application.

Implementation

Future<Snippet> readSnippet({
  required String siteId,
  String? authToken,
}) async {
  return _onlineService.readSnippet(siteId: siteId, authToken: authToken);
}