blob: 44cd47312eaf9d9622675960435224eb83c2eaa3 [file] [log] [blame]
>>>
variable =
await function(
argument, // Force split in argument list.
another,
);
<<<
variable = await function(
argument, // Force split in argument list.
another,
);
>>> (indent 4)
final response =
await post(Uri.parse(webhookUrl), headers: {
HttpHeaders.contentTypeHeader: ContentType.json.value,
}, body: json.encode(discordPayload));
<<<
final response = await post(Uri.parse(webhookUrl), headers: {
HttpHeaders.contentTypeHeader: ContentType.json.value,
}, body: json.encode(discordPayload));
>>> (indent 2)
final token =
await jwt.verify('<TOKEN>', issuer: '<ISSUER>', audience: {
'<AUDIENCE>',
}, publicKeysUrl: '<PUBLIC_KEYS_URL>');
<<<
final token = await jwt.verify('<TOKEN>', issuer: '<ISSUER>', audience: {
'<AUDIENCE>',
}, publicKeysUrl: '<PUBLIC_KEYS_URL>');
>>> (indent 6)
final connection =
await connectSocket(
uri.host,
port: uri.port,
timeout: _socketOptions.timeout,
);
<<<
final connection = await connectSocket(
uri.host,
port: uri.port,
timeout: _socketOptions.timeout,
);