create method

Future<PlatformMediumModel> create()

Implementation

Future<PlatformMediumModel> create() async {
  var policyID = 'policy_id';
  var policy = await _uploadPlatformJpg(
    app,
    memberId,
    policiesAssetLocation(),
    policyID,
  );
  return policy;
}