getColorName abstract method

  1. @GET.new("colorbyhex/{colorcode}")
Future<List<ColorNameModel>> getColorName(
  1. @Path.new("colorcode") String colorCode
)

Implementation

@GET("colorbyhex/{colorcode}")
Future<List<ColorNameModel>> getColorName(
    @Path("colorcode") String colorCode);