statusOpacity method

double statusOpacity()

Implementation

double statusOpacity() {
  switch (this) {
    case VideoCallStatus.scheduled:
      return 1.0;
    case VideoCallStatus.cancelled:
      return 0.38;
    case VideoCallStatus.finished:
      return 1.0;
  }
}