get static method
Fetch an existing resource.
url
is the target.
applicationKey
is the key associated with this devices in the bridge's
whitelist.
Implementation
static Future<Map<String, dynamic>?> get({
required String url,
required String applicationKey,
required String? token,
}) async =>
await _submitRequestForBody(
url: url,
applicationKey: applicationKey,
token: token,
body: null,
requestType: _RequestType.get,
);