putData method

TaskPlatform putData(
  1. Uint8List data, [
  2. SettableMetadata? metadata
])

Uploads data to this reference's location.

Use this method to upload fixed sized data as a Uint8List.

Optionally, you can also set metadata onto the uploaded object.

Implementation

TaskPlatform putData(Uint8List data, [SettableMetadata? metadata]) {
  throw UnimplementedError('putData() is not implemented');
}