load method

Future<Avatar> load({
  1. required String id,
  2. void onProgress(
    1. double progress
    )?,
})

Implementation

Future<Avatar>load({required String id, void Function(double progress)? onProgress}) {
  throw UnimplementedError('load() has not been implemented.');
}