getAttachment method

Future<MixinResponse<Attachment>> getAttachment(
  1. String id
)

Implementation

Future<MixinResponse<Attachment>> getAttachment(String id) =>
    MixinResponse.request<Attachment>(
      dio.get('/attachments/$id'),
      Attachment.fromJson,
    );