random static method

Implementation

static GradientBackground random(){
  final colors = getDefaultGradientBackgrounds();
  final randomNum = NUIMathUtil.random(0, colors.length - 1);
  return colors[randomNum];
}