statusLabel method

String statusLabel()

Implementation

String statusLabel() {
  switch (this) {
    case VideoCallStatus.scheduled:
      return '予定あり';
    case VideoCallStatus.cancelled:
      return 'キャンセル';
    case VideoCallStatus.finished:
      return '終了';
  }
}